C# string slice

48

C# string slice -

string word = "hello";
string ordw = word.Substring(1) + word.Substring(0, 1);

Comments

Submit
0 Comments